home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / t_sys5 / unixcpio.gz / unixnet.cpio / finger.h < prev    next >
C/C++ Source or Header  |  1994-07-11  |  685b  |  27 lines

  1.  
  2. /*
  3.  *
  4.  *    Finger support...
  5.  *
  6.  *    Finger header defines.  Written by Michael T. Horne - KA7AXD.
  7.  *    Copyright 1988 by Michael T. Horne, All Rights Reserved.
  8.  *    Permission granted for non-commercial use and copying, provided
  9.  *    that this notice is retained.
  10.  *
  11.  */
  12.  
  13. #define FINGER_PORT    79    /* TCP port for `who' (finger) service */
  14. #define FINGNAMELEN    8    /* max len of user name */
  15.  
  16. /* finger protocol control block */
  17. struct finger {
  18.     struct tcb    *tcb;        /* pointer to associated tcb */
  19.     struct session    *session;    /* pointer to finger session */
  20.     char        *user;        /* name of user to finger */
  21. };
  22. #define    NULLFING    (struct finger *) 0
  23.  
  24. extern char        *fingersuf,    /* see files.c */
  25.             *fingerpath;
  26.  
  27.